3e3a22a5c92dbda5572e6f78eff5c12b4f5c728b,compiler/cli/src/org/jetbrains/jet/cli/js/K2JSCompiler.java,K2JSCompiler,doExecute,#PrintStream#K2JSCompilerArguments#MessageRenderer#,63

Before Change


        }

        if (arguments.srcdir == null) {
            stream.print(renderer.render(CompilerMessageSeverity.ERROR, "Specify sources location via -srcdir", NO_LOCATION));
            return ExitCode.INTERNAL_ERROR;
        }

After Change


    protected ExitCode doExecute(K2JSCompilerArguments arguments, PrintingMessageCollector messageCollector, Disposable rootDisposable) {

        if (arguments.srcdir == null) {
            messageCollector.report(CompilerMessageSeverity.ERROR, "Specify sources location via -srcdir", NO_LOCATION);
            return ExitCode.INTERNAL_ERROR;
        }